home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / misc / gnuplothel / splot < prev    next >
Text File  |  1994-10-22  |  761b  |  27 lines

  1. splot:
  2.  
  3. Synopsis: Create a 3-dimensional surface plot.
  4.  
  5. Syntax: splot ( X, Y, Z, KeyTitles, I )
  6.  
  7. Description:
  8.  
  9.     For 3D-plotting splot() makes a 3D-surface plot.
  10.     This is in GNUPLOT a 3D-plot with no 
  11.     
  12.     The splot() function splots numeric data via the GNUPLOT program. The
  13.     argument Z is a matrix as functions of vectors X and Y.
  14.     The KeyTitles is a string-vector containing the titles to be plotted as keys.
  15.     They are chosen beginning at KeyTitles[1] and so on.
  16.  
  17.     splot ( X, Y, Z )        splots the contents of matrix Z
  18.                     versus X and Y
  19.     splot ( Z )            splots the contents of matrix Z
  20.                     versus rows and columns
  21.     splot ( X, Y, [Z1,Z2] )         splots Z1, and Z2 on the same graph
  22.  
  23.     If 'I' is not specified the default plot-window (0) is used.
  24.  
  25. See Also: cont
  26.  
  27.